home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / HENSA / MISC / SHELL.ARC / Shell / h / Vector < prev    next >
Encoding:
Text File  |  1994-04-08  |  394 b   |  22 lines

  1. #ifndef __Shell_Vector_h
  2. #define __Shell_Vector_h
  3.  
  4. #ifndef __Shell_h
  5. #include "Shell.Shell.h"
  6. #endif
  7.  
  8.  
  9. Shell_rectblock *Shell_AddDoubleVerticalVector(
  10.     Shell_windblock    *wind, 
  11.     int        x, 
  12.     int        y, 
  13.     int        size, 
  14.     int        forecol, 
  15.     int        backcol, 
  16.     double        *data
  17.     );
  18.     /* displays the contents of double array 'data' as a vertical    */
  19.     /* vector in the window. The top value will be data[0]        */
  20.  
  21. #endif
  22.